Package-level declarations

(beta) Layout UI Elements

Types

Link copied to clipboard

AutoLayout is a layout manager that handles automatic layout for UI elements.

Link copied to clipboard
open class Column : AutoLayout

Column is a layout manager that arranges its children in a vertical sequence.

Link copied to clipboard
class Modifier

Modifier is used to modify the properties of a UIElement, including padding, gravity, and visibility. This should only be used for a UIElement that resides inside an AutoLayout; otherwise, it will have no effect.

Link copied to clipboard
open class Row : AutoLayout

Row is a layout manager that arranges its children in a horizontal sequence.

Functions

Link copied to clipboard

Gets an existing or creates a new modifier for the UIElement.

Link copied to clipboard
fun UIElement.modify(modifier: (modifier: Modifier) -> Unit): UIElement

Modify the UIElement using a specified modifier function.